home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / DS-1.ZIP;1 / RUNTIME.ZIP / FXTRA.R < prev    next >
Encoding:
Text File  |  1992-02-10  |  697 b   |  24 lines

  1. /*
  2.  * File: fxtra.r
  3.  *  Contents: additional functions to extend the standard Icon repertoire.
  4.  *  This file includes collections of functions, such as functions specific to
  5.  *  MS-DOS (DosFncs).
  6.  *
  7.  *  These collections are under the control of conditional compilation
  8.  *  as indicated by the symbols in parentheses. To enable a set of functions,
  9.  *  define the corresponding symbol in ../h/define.h.  The functions themselves
  10.  *  are in separate files, included according to the defined symbols.
  11.  */
  12.  
  13.  
  14. #ifdef DosFncs
  15. #include "fxmsdos.ri"
  16. #endif                    /* DosFncs */
  17.  
  18. #ifdef ArmFncs
  19. #include "fxarm.ri"
  20. #endif                    /* ArmFncs */
  21.  
  22.  
  23. static char junk;            /* avoid empty module */
  24.